home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / tools / vcomp.exe / VCM.BAT < prev    next >
Encoding:
DOS Batch File  |  1992-06-16  |  220 b   |  7 lines

  1. @echo off
  2. rem For example,
  3. rem    VCM C:\OLD\ *.C
  4. rem will compare all the .C files in the current directory with the .C files
  5. rem with matching file names in the C:\OLD directory.
  6. for %%f in (%2) do vcomp %1 %%f
  7.